home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / program / pce32dll.zip / PCEDLL / MSOFT / PCE32DLL.DEF < prev    next >
Text File  |  1996-10-23  |  985b  |  29 lines

  1.  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  2. ;   (REMEMBER IN DEF FILES FOR A COMMENT USE ;)                 ;
  3. ;                                                               ;
  4. ;     Mydll.def                                                 ;
  5. ;                                                               ;
  6. ;                                                               ;
  7. ;  The def file for the dll                                     ;
  8. ;                                                               ;
  9. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  10.  
  11. ; In 32 bit dll's you don't need a DEF file , ive only included
  12. ; one so you can see what it should look like
  13.  
  14.  
  15. LIBRARY      PCE32DLL
  16. DESCRIPTION 'SAMPLE 32BIT DLL ⌐ PC-Enterprises / Paul Collishaw 1996/1997'
  17. CODE         PRELOAD MOVABLE DISCARDABLE
  18. DATA         PRELOAD SINGLE
  19.  
  20.  
  21. EXPORTS
  22.  
  23.       ; The names of the Dll functions , just 1 in this case
  24.  
  25.      TimesTwo
  26.  
  27.  
  28.  
  29.